Carlsberg… probably not the best cybersecurity in the world#1765
Merged
carlospolop merged 1 commit intomasterfrom Jan 23, 2026
Conversation
Collaborator
Author
🔗 Additional ContextOriginal Blog Post: https://www.pentestpartners.com/security-blog/carlsberg-probably-not-the-best-cybersecurity-in-the-world/ Content Categories: Based on the analysis, this content was categorized under "🕸️ Pentesting Web → IDOR (and/or Rate Limit Bypass / Authorization issues) — add a subsection on 'Weak bearer identifiers / enumerable IDs in QR/URLs (encoding ≠ security) + Burp Intruder enumeration + validating rate limiting'". Repository Maintenance:
Review Notes:
Bot Version: HackTricks News Bot v1.0 |
Collaborator
Author
|
merge |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🤖 Automated Content Update
This PR was automatically generated by the HackTricks News Bot based on a technical blog post.
📝 Source Information
🎯 Content Summary
The post documents an unauthenticated IDOR / weak bearer-token design in the “Home of Carlsberg” exhibition “memories” feature, where knowing/guessing a wristband ID is sufficient to retrieve other visitors’ photos/videos and associated PII (full names).
1) How the system works (data flow)
1. Visitors receive wristbands with a QR code during the Copenhagen exhibition (Aug 2025). Interactive kiosks (beer blend, “dance in a beer ...
🔧 Technical Details
Weak bearer identifier / IDOR via enumeratable IDs: If a web application uses a short/guessable identifier in a URL/QR code as the only “authentication” to retrieve private objects (photos/videos/PII), it becomes an IDOR/weak-token issue: an attacker can enumerate candidate IDs until responses indicate a valid object, then retrieve other users’ content. Simple transformations (e.g., ASCII-to-hex encoding) do not add security because they are reversible and do not increase entropy.
Practical online keyspace enumeration with Burp Intruder: Use Burp Suite’s Intruder to automate requests over an ID/keyspace, then identify valid IDs by filtering on response characteristics (e.g., presence of media links vs. invalid/empty responses). Measuring throughput (IDs tested per hour) allows estimating feasibility/time to cover the keyspace and the likely scale of exposed users/content.
Validating rate limiting claims: When a vendor claims “rate limiting” as a miti...
🤖 Agent Actions
Summary:
Tests:
This PR was automatically created by the HackTricks Feed Bot. Please review the changes carefully before merging.